home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue56 / Splat / recordmain.dfm / recordmain.txt
Encoding:
Text File  |  2000-01-31  |  13.6 KB  |  330 lines

  1. object Form1: TForm1
  2.   Left = 275
  3.   Top = 116
  4.   Width = 337
  5.   Height = 488
  6.   Caption = 'Record Sounds'
  7.   Color = clBtnFace
  8.   Font.Charset = ANSI_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -13
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   KeyPreview = True
  14.   OldCreateOrder = False
  15.   Scaled = False
  16.   OnCreate = FormCreate
  17.   OnKeyDown = FormKeyDown
  18.   OnKeyUp = FormKeyUp
  19.   PixelsPerInch = 120
  20.   TextHeight = 16
  21.   object Label1: TLabel
  22.     Left = 8
  23.     Top = 16
  24.     Width = 313
  25.     Height = 65
  26.     Anchors = [akLeft, akTop, akRight]
  27.     AutoSize = False
  28.     Caption = 
  29.       'Press any letter or number key, and while holding down the key, ' +
  30.       'say the letter or number. Then release the key.'
  31.     WordWrap = True
  32.   end
  33.   object Label2: TLabel
  34.     Left = 8
  35.     Top = 92
  36.     Width = 62
  37.     Height = 16
  38.     Caption = 'Keyboard:'
  39.   end
  40.   object WaveList: TListView
  41.     Left = 8
  42.     Top = 200
  43.     Width = 313
  44.     Height = 233
  45.     Anchors = [akLeft, akTop, akRight, akBottom]
  46.     Columns = <
  47.       item
  48.         Caption = 'Name'
  49.         Width = 100
  50.       end
  51.       item
  52.         Caption = 'Size'
  53.         Tag = 1
  54.       end
  55.       item
  56.         Caption = 'Modified'
  57.         Tag = 2
  58.         Width = 140
  59.       end>
  60.     HideSelection = False
  61.     MultiSelect = True
  62.     PopupMenu = PopupMenu
  63.     SortType = stData
  64.     TabOrder = 0
  65.     ViewStyle = vsList
  66.     OnColumnClick = WaveListColumnClick
  67.     OnCompare = WaveListCompare
  68.     OnDblClick = PlayActionExecute
  69.     OnDeletion = WaveListDeletion
  70.   end
  71.   object StatusBar: TStatusBar
  72.     Left = 0
  73.     Top = 440
  74.     Width = 329
  75.     Height = 21
  76.     Font.Charset = ANSI_CHARSET
  77.     Font.Color = clWindowText
  78.     Font.Height = -13
  79.     Font.Name = 'MS Sans Serif'
  80.     Font.Style = []
  81.     Panels = <
  82.       item
  83.         Width = 100
  84.       end
  85.       item
  86.         Width = 50
  87.       end>
  88.     SimplePanel = False
  89.     UseSystemFont = False
  90.   end
  91.   object KeyboardList: TComboBox
  92.     Left = 80
  93.     Top = 90
  94.     Width = 241
  95.     Height = 24
  96.     Style = csDropDownList
  97.     Anchors = [akLeft, akTop, akRight]
  98.     ItemHeight = 16
  99.     TabOrder = 2
  100.     OnChange = KeyboardListChange
  101.   end
  102.   object Recording: TGroupBox
  103.     Left = 8
  104.     Top = 120
  105.     Width = 313
  106.     Height = 73
  107.     Anchors = [akLeft, akTop, akRight]
  108.     Caption = 'Recording'
  109.     TabOrder = 3
  110.     object WideLabel1: TWideLabel
  111.       Left = 2
  112.       Top = 18
  113.       Width = 309
  114.       Height = 53
  115.       Align = alClient
  116.       Alignment = taCenter
  117.       Font.Charset = ANSI_CHARSET
  118.       Font.Color = clWindowText
  119.       Font.Height = -33
  120.       Font.Name = 'Times New Roman'
  121.       Font.Style = [fsBold]
  122.       ParentFont = False
  123.     end
  124.   end
  125.   object PopupMenu: TPopupMenu
  126.     Images = ImageList
  127.     Left = 120
  128.     Top = 176
  129.     object Play1: TMenuItem
  130.       Action = PlayAction
  131.       Default = True
  132.     end
  133.     object Delete1: TMenuItem
  134.       Action = DeleteAction
  135.     end
  136.     object ChangeDirectory1: TMenuItem
  137.       Action = ChDirAction
  138.     end
  139.     object N1: TMenuItem
  140.       Caption = '-'
  141.     end
  142.     object ViewList1: TMenuItem
  143.       Tag = 2
  144.       Caption = 'View &List'
  145.       Checked = True
  146.       GroupIndex = 1
  147.       RadioItem = True
  148.       OnClick = ViewStyleExecute
  149.     end
  150.     object ViewDetails1: TMenuItem
  151.       Tag = 3
  152.       Caption = '&View Details'
  153.       GroupIndex = 1
  154.       RadioItem = True
  155.       OnClick = ViewStyleExecute
  156.     end
  157.   end
  158.   object ActionList: TActionList
  159.     Images = ImageList
  160.     OnUpdate = ActionListUpdate
  161.     Left = 176
  162.     Top = 88
  163.     object PlayAction: TAction
  164.       Caption = '&Play'
  165.       Enabled = False
  166.       Hint = 'Play|Play the selected sound file'
  167.       ImageIndex = 1
  168.       OnExecute = PlayActionExecute
  169.     end
  170.     object DeleteAction: TAction
  171.       Caption = '&Delete'
  172.       Enabled = False
  173.       Hint = 'Delete|Delete the selected sound file'
  174.       ImageIndex = 0
  175.       OnExecute = DeleteActionExecute
  176.     end
  177.     object ChDirAction: TAction
  178.       Caption = '&Change Directory...'
  179.       Hint = 
  180.         'Change Directory|Open a different folder and create WAV files th' +
  181.         'ere'
  182.       ImageIndex = 2
  183.       OnExecute = ChDirActionExecute
  184.     end
  185.   end
  186.   object ImageList: TImageList
  187.     Left = 80
  188.     Top = 120
  189.     Bitmap = {
  190.       494C010103000400040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  191.       0000000000003600000028000000400000001000000001002000000000000010
  192.       0000000000000000000000000000000000000000000000000000000000000000
  193.       0000000000000000000000000000000000000000000000000000000000000000
  194.       0000000000000000000000000000000000000000000000000000000000000000
  195.       0000000000000000000000000000000000000000000000000000000000000000
  196.       0000000000000000000000000000000000000000000000000000000000000000
  197.       0000000000000000000000000000000000000000000000000000000000000000
  198.       0000000000000000000000000000000000000000000000000000000000000000
  199.       0000000000000000000000000000000000000000000000000000000000000000
  200.       0000000000000000000000000000000000000000000000000000000000000000
  201.       0000000000000000000000000000000000000000000000000000000000000000
  202.       0000000000000000000000000000FFFFFF000000000000000000000000000000
  203.       0000000000000000000000000000000000000000000000000000000000000000
  204.       0000000000000000000000000000000000000000000080808000000000000000
  205.       0000000000000000000000000000000000000000000000000000000000000000
  206.       0000000000000000000000000000000000000000000000000000000000000000
  207.       0000000000000000000000000000000000000000000000000000000000000000
  208.       0000000000000000000000000000000000000000000000000000000000000000
  209.       000000000000FFFFFF0000000000000000000000000000000000000000000000
  210.       0000000000000000000000000000000000000000000000000000000000000000
  211.       0000000000000000000000000000808080000000000000000000000000000000
  212.       000000000000000000000000000000000000000000000000000000000000C0C0
  213.       C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0
  214.       C00000FFFF00C0C0C00000FFFF00000000000000000000000000000000000000
  215.       0000000000000000000000000000000000000000000000000000000000000000
  216.       0000000000000000000000000000000000000000000000000000000000000000
  217.       00000000000000000000FFFFFF00000000000000000000000000000000000000
  218.       00000000000000000000FFFFFF00000000000000000000000000000000000000
  219.       0000000000000000000080808000808080000000000000000000000000000000
  220.       0000000000000000000000000000000000000000000000000000FFFFFF000000
  221.       0000C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FF
  222.       FF00C0C0C00000FFFF00C0C0C000000000000000000000000000000000000000
  223.       0000000000000000000000000000000000000000000000000000000000000000
  224.       0000000000000000000000000000000000000000000000000000000000000000
  225.       00000000000000000000FFFFFF00000000000000000000000000000000000000
  226.       000000000000FFFFFF0000000000000000000000000000000000000000000000
  227.       0000000000008080800080808000C0C0C0000000000000000000000000000000
  228.       000000000000000000000000000000000000000000000000000000FFFF000000
  229.       000000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0
  230.       C00000FFFF00C0C0C00000FFFF00C0C0C0000000000000000000000000000000
  231.       0000000000000000000000000000000000000000000000000000000000000000
  232.       0000000000000000000000000000000000000000000000000000000000000000
  233.       0000000000000000000000000000FFFFFF000000000000000000000000000000
  234.       000000000000FFFFFF0000000000000000000000000000000000808080008080
  235.       80008080800080808000C0C0C000C0C0C0000000000000000000000000000000
  236.       0000000000000000000000000000000000000000000000000000FFFFFF0000FF
  237.       FF000000000000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FF
  238.       FF00C0C0C00000FFFF00C0C0C00000FFFF000000000000000000000000000000
  239.       0000000000000000000000000000000000000000000000000000000000000000
  240.       0000000000000000000000000000000000000000000000000000000000000000
  241.       000000000000000000000000000000000000FFFFFF0000000000000000000000
  242.       0000FFFFFF000000000000000000000000000000000000000000C0C0C00000FF
  243.       FF00C0C0C00000FFFF00C0C0C00000FFFF000000000000000000000000000000
  244.       000000000000000000000000000000000000000000000000000000FFFF00FFFF
  245.       FF0000000000C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0
  246.       C00000FFFF00C0C0C00000FFFF00C0C0C0000000000000000000000000000000
  247.       0000000000000000000000000000000000000000000000000000000000000000
  248.       0000000000000000000000000000000000000000000000000000000000000000
  249.       000000000000000000000000000000000000000000000000000000000000FFFF
  250.       FF0000000000000000000000000000000000000000000000000000FFFF00C0C0
  251.       C00000FFFF00C0C0C00000FFFF00C0C0C0000000000000000000000000000000
  252.       0000000000000000000000000000000000000000000000000000FFFFFF0000FF
  253.       FF00FFFFFF000000000000000000000000000000000000000000C0C0C00000FF
  254.       FF00C0C0C00000FFFF00C0C0C00000FFFF000000000000000000000000000000
  255.       0000000000000000000000000000000000000000000000000000000000000000
  256.       0000000000000000000000000000000000000000000000000000000000000000
  257.       0000000000000000000000000000000000000000000000000000FFFFFF000000
  258.       000000000000000000000000000000000000000000000000000000FFFF0000FF
  259.       FF0000FFFF0000FFFF0000FFFF0000FFFF000000000000000000000000000000
  260.       000000000000000000000000000000000000000000000000000000FFFF00FFFF
  261.       FF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF00000000000000
  262.       0000000000000000000000000000000000000000000000000000000000000000
  263.       0000000000000000000000000000000000000000000000000000000000000000
  264.       0000000000000000000000000000000000000000000000000000000000000000
  265.       000000000000000000000000000000000000000000000000000000000000FFFF
  266.       FF00000000000000000000000000000000000000000000000000C0C0C000C0C0
  267.       C000C0C0C000C0C0C00000FFFF0000FFFF000000000000000000000000000000
  268.       0000000000000000000000000000000000000000000000000000FFFFFF0000FF
  269.       FF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FF
  270.       FF00FFFFFF0000FFFF0000000000000000000000000000000000000000000000
  271.       0000000000000000000000000000000000000000000000000000000000000000
  272.       0000000000000000000000000000000000000000000000000000000000000000
  273.       000000000000000000000000000000000000FFFFFF000000000000000000FFFF
  274.       FF00000000000000000000000000000000000000000000000000000000000000
  275.       00000000000080808000C0C0C000C0C0C0000000000000000000000000000000
  276.       000000000000000000000000000000000000000000000000000000FFFF00FFFF
  277.       FF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFF
  278.       FF0000FFFF00FFFFFF0000000000000000000000000000000000000000000000
  279.       0000000000000000000000000000000000000000000000000000000000000000
  280.       0000000000000000000000000000000000000000000000000000000000000000
  281.       0000000000000000000000000000FFFFFF000000000000000000000000000000
  282.       000000000000FFFFFF0000000000000000000000000000000000000000000000
  283.       0000000000000000000080808000C0C0C0000000000000000000000000000000
  284.       0000000000000000000000000000000000000000000000000000FFFFFF0000FF
  285.       FF00FFFFFF0000FFFF00FFFFFF00000000000000000000000000000000000000
  286.       0000000000000000000000000000000000000000000000000000000000000000
  287.       0000000000000000000000000000000000000000000000000000000000000000
  288.       0000000000000000000000000000000000000000000000000000000000000000
  289.       00000000000000000000FFFFFF00000000000000000000000000000000000000
  290.       00000000000000000000FFFFFF00000000000000000000000000000000000000
  291.       0000000000000000000000000000808080000000000000000000000000000000
  292.       0000000000000000000000000000000000000000000000000000000000000000
  293.       0000000000000000000000000000000000000000000000000000000000000000
  294.       0000000000000000000000000000000000000000000000000000000000000000
  295.       0000000000000000000000000000000000000000000000000000000000000000
  296.       0000000000000000000000000000000000000000000000000000000000000000
  297.       0000FFFFFF000000000000000000000000000000000000000000000000000000
  298.       0000000000000000000000000000FFFFFF000000000000000000000000000000
  299.       0000000000000000000000000000000000000000000000000000000000000000
  300.       0000000000000000000000000000000000000000000000000000000000000000
  301.       0000000000000000000000000000000000000000000000000000000000000000
  302.       0000000000000000000000000000000000000000000000000000000000000000
  303.       0000000000000000000000000000000000000000000000000000000000000000
  304.       0000000000000000000000000000000000000000000000000000000000000000
  305.       0000000000000000000000000000000000000000000000000000000000000000
  306.       0000000000000000000000000000000000000000000000000000000000000000
  307.       0000000000000000000000000000000000000000000000000000000000000000
  308.       0000000000000000000000000000000000000000000000000000000000000000
  309.       0000000000000000000000000000000000000000000000000000000000000000
  310.       0000000000000000000000000000000000000000000000000000000000000000
  311.       0000000000000000000000000000000000000000000000000000000000000000
  312.       0000000000000000000000000000000000000000000000000000000000000000
  313.       0000000000000000000000000000000000000000000000000000000000000000
  314.       0000000000000000000000000000000000000000000000000000000000000000
  315.       0000000000000000000000000000000000000000000000000000000000000000
  316.       0000000000000000000000000000000000000000000000000000000000000000
  317.       0000000000000000000000000000000000000000000000000000000000000000
  318.       0000000000000000000000000000000000000000000000000000000000000000
  319.       0000000000000000000000000000000000000000000000000000000000000000
  320.       000000000000000000000000000000000000424D3E000000000000003E000000
  321.       2800000040000000100000000100010000000000800000000000000000000000
  322.       000000000000000000000000FFFFFF00FFFFFFF7FFFF0000FFFCFE7B80010000
  323.       F3FFFC7D80000000E1F9F86E80000000E1F3C07680000000F0E3805B80000000
  324.       F847806B80000000FC0F806B80000000FE1F806B80000000FC0F805B80010000
  325.       F84FC07680010000E0E3F86E80030000C1F1FC7DC1FF0000C7F8FE7BFFFF0000
  326.       FFFFFFF7FFFF0000FFFFFFFFFFFF000000000000000000000000000000000000
  327.       000000000000}
  328.   end
  329. end
  330.